##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1426 - No Title.py
# Description: No Title
##############################################################################
class Battery:
def __init__(self, energy=100):
self.energy = energy
def consume(self, consumption):
if consumption > self.energy:
consumption = self.energy
self.energy -= consumption
return consumption